----- HexTraImp v1.0 - Urbano Pereira da Silva - 2013 -----			 

ENGLISH:
---------

	The tool HexTraImp is a stand alone java command line tool, based on reading, writing and overwriting data in files in hexadecimal level.
	The HexTraImp is a simple tool composed of only two options, import and export data hexadecimal.
	- Import data from an external file, to an address specified by the user.
	- Export an amount of data specified by the user from a complete address specified by the user.

Using HexTraImp:

To use the tool HexTraImp.jar start with the simple command [java-jar HexTraImp.jar] This command will give you the options available.

     SYNTAX:
     Java -jar HexTraImp.jar [I] [0xEND_INICIO] [FICH_ORIG.EXT] [FICH_DE_DADOS.EXT]
     Java -jar HexTraImp.jar [E] [0xEND_INICIO] [0xN_BYTES] [FICH_ORIG.EXT]	

	 DESCRIPTION:
	 [I/E]               Mode Slection [Import/Export]
	 [0xEND_INICIO]      Bigining Address [Offset]
	 [FICH_ORIG.EXT]     The file to write the data
	 [FICH_DE_DADOS.EXT] The file containing the data to be inserted
	 [0xN_BYTES]         Amount of data bytes to be Extracted

	If any questions arise, some of the considerations described below can help you:

		1 - This program was created with the command line interface only.
		2 - The HexTraImp not looking for graphic images. "Raw" or any other content Standardized,
		    only import/export data from/to the addresses indicated by the user.
		3 - The HexTraImp processes files in the local directory or other directories (not tested on LANs).
		4 - The Import option creates a temporary file that removes immediately after the process finished.
		5 - The Export option creates a file in the local directory with the extension. "Raw" in the following format:
		    [FICH_ORIG.EXT]_[0xEND_INICIO]-[0xEND_FIM].raw.
		6 - This tool has error detection, - what I considered as "reasonable mistakes" - others
		    be detected by the APIs Handelling error of the development platform (Java).